home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / oilpaint.ifx.pre < prev    next >
Text File  |  2004-08-03  |  467b  |  28 lines

  1. /*
  2.  * OilPaint.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Template for AutoFX scripts.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base = 'Autofx_OilPaint_'
  19.  
  20. a = GETCLIP(base||'Radius') ; IF a = "" THEN a = 2
  21.  
  22. RequestSlider '"OilPaint Radius:"' 2 50 a
  23. IF rc ~= 0 THEN EXIT rc
  24.  
  25. CALL SETCLIP(base||'Radius', result)
  26.  
  27. EXIT
  28.